tests: Fix unit test for ref-binding metadata
authorMatthew Leeds <matthew.leeds@endlessm.com>
Wed, 28 Mar 2018 22:56:13 +0000 (15:56 -0700)
committerAtomic Bot <atomic-devel@projectatomic.io>
Wed, 28 Mar 2018 23:41:55 +0000 (23:41 +0000)
The `ostree show` command is currently failing due to incorrect syntax,
but we want to check that it fails because the metadata isn't there.

Closes: #1520
Approved by: cgwalters

tests/basic-test.sh

index b8e7eb073736bbcaf1ad53b10cfc395c44df889e..e0ed2c32330101f4760aacffc8dcaeaeed1ae606 100644 (file)
@@ -851,7 +851,7 @@ $OSTREE show --print-metadata-key=ostree.ref-binding test2 > test2-ref-binding
 assert_file_has_content test2-ref-binding 'test2'
 
 $OSTREE commit ${COMMIT_ARGS} -b test2-unbound --no-bindings --tree=dir=${test_tmpdir}/checkout-test2
-if $OSTREE show --print-metadata-key=ostree.ref-binding; then
+if $OSTREE show --print-metadata-key=ostree.ref-binding test2-unbound; then
     fatal "ref bindings found with --no-bindings?"
 fi
 echo "ok refbinding"